home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00029_xTools.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.9 KB  |  162 lines

  1. --
  2. -- xTools
  3. --
  4.  
  5. property ancestor
  6. property xPath
  7. property foundFlag
  8.  
  9. on new me
  10.   -- set constants:
  11.   
  12.   -- initialize the ancestor:
  13.   set ancestor = new (script "AppTools")
  14.   
  15.   -- we will get the name of the volume we are on, and then build an absolute path to the xtra folder of choice
  16.   
  17.   set targetFolder = "Xtras"
  18.   
  19.   set foundFlag = 0
  20.   
  21.   -- lets start by looking in this folder for the right xPath, then we will walk up to the root,
  22.   -- looking as we go...
  23.   set folderPath = the pathName
  24.   set xPath = findFileUpStream(me, folderPath, targetFolder)
  25.   
  26.   if xPath = 0 then
  27.     alert "xobject folder not found, make sure it is there..."
  28.   else
  29.     set foundFlag = 1
  30.     
  31.     -- now we are going to open the xObject folder
  32.     initXobjFolder(me, xPath)
  33.   end if
  34.   
  35.   return me
  36. end
  37.  
  38. -- this will open a whole folder full of openXlib-able things
  39. on initXobjFolder me, thePath
  40.   -- now find all the xtras/xobjects in that folder
  41.   set fileList = []
  42.   repeat with x = 1 to the maxInteger
  43.     set n = getNthFileNameInFolder(thePath, x)
  44.     
  45.     if n = EMPTY then 
  46.       exit repeat
  47.     end if
  48.     
  49.     -- just in case we want to store some other crap in that folder
  50.     -- any item with the string "pref" in it will be skipped
  51.     if n contains "pref" then
  52.       next repeat
  53.     end if
  54.     
  55.     
  56.     if pD(me) = "\" then
  57.       if not (n contains ".dll") then 
  58.         next repeat
  59.       end if
  60.     else
  61.       next repeat
  62.       --      if (n contains ".dll" or n contains ".X16" or n contains ".X32") then 
  63.       --        next repeat
  64.       --      end if
  65.     end if
  66.     
  67.     append(fileList, (thePath & n))
  68.   end repeat  
  69.   
  70.   if the optionDown then
  71.     put thePath
  72.   end if
  73.   
  74.   -- put fileList
  75.   
  76.   repeat with x in fileList
  77.     openXlib x
  78.   end repeat
  79.   -- now all the xobjects should be open..  
  80.   
  81.   return 1
  82. end
  83.  
  84. -- clear out all of my stuff
  85. on destruct me
  86.   -- close all the x things
  87.   -- now find all the xtras/xobjects in that folder
  88.   put [] into fileList
  89.   repeat with x = 1 to the maxInteger
  90.     set n = getNthFileNameInFolder(xPath, x)
  91.     
  92.     if n = EMPTY then 
  93.       exit repeat
  94.     end if
  95.     
  96.     if pD(me) = "\" then
  97.       if not (n contains ".dll") then 
  98.         next repeat
  99.       end if
  100.     else
  101.       next repeat
  102.       --      if (n contains ".dll" or n contains ".X16" or n contains ".X32") then 
  103.       --        next repeat
  104.       --      end if
  105.     end if
  106.     
  107.     
  108.     -- just in case we want to store some other crap in that folder
  109.     -- any item with the string "pref" in it will be skipped
  110.     if n contains "pref" then
  111.       next repeat
  112.     end if
  113.     
  114.     append(fileList, (xPath & n))
  115.   end repeat  
  116.   
  117.   repeat with x in fileList
  118.     -- put x
  119.     closeXlib x
  120.   end repeat
  121.   -- now all the xobjects are closed
  122.   
  123.   -- destruct my chain
  124.   if objectP (ancestor) then destruct (ancestor)
  125.   set ancestor = 0
  126. end
  127.  
  128.  
  129. -- this tells you if an xTra is currently opened or not
  130. -- this will only be useful if the xobjects/xcmds/xfcns/xtras are opened before it is called, otherwise, it will
  131. -- miss them all. (especially xcmds/xfcns).
  132.  
  133. -- this will also look for word fragments using a "contains", so you could ask it for "printo" and get a return on 
  134. -- printomatic
  135. on xtraExists me, theXtraNameString
  136.   set maxXtras = the number of xtras
  137.   
  138.   -- walk through the xtras list
  139.   repeat with x = 1 to maxXtras
  140.     set thisXtra = the name of xtra x
  141.     
  142.     -- if we hit an exact match then fine, else look for a contains
  143.     if thisXtra = theXtraNameString or thisXtra contains theXtraNameString then
  144.       return 1
  145.     end if
  146.   end repeat
  147.   
  148.   -- now we should look through the available xObjects
  149.   set xObjectList = xFactoryList("")
  150.   
  151.   -- debug
  152.   return 1
  153.   -- debug
  154.   
  155.   if xObjectList contains theXtraNameString then
  156.     return 1
  157.   else
  158.     -- alert theXtraNameString & " : is not opened, please make sure it is in the right place..."
  159.     put theXtraNameString & " : is not opened, please make sure it is in the right place..."
  160.     return 0
  161.   end if
  162. end